C# |
---|
public static Int64 GetInt64(Object value) |
C# |
---|
using LJCNetCommon; // Gets a long value from an object. private static void GetInt64() { // Simulates an Object value like that received from a DataTable. long setup = 3; object obj = setup; // Gets a long value from an object. long value = NetCommon.GetInt64(obj); } |